home *** CD-ROM | disk | FTP | other *** search
- onClipEvent(enterFrame){
- if(_root.level1._x > 298)
- {
- this._x = 300;
- }
- if(_root.levmoveR)
- {
- this._x -= 3;
- }
- if(_root.levmoveL)
- {
- this._x += 3;
- }
- if(_root.jumpR)
- {
- this._x -= 13;
- }
- if(_root.jumpL)
- {
- this._x += 13;
- }
- if(_root.sheep._x < this._x + 10)
- {
- if(_root.sheep._x > this._x - 10)
- {
- this.gotoAndPlay(37);
- this._visible = false;
- }
- }
- if(this._x < 0)
- {
- this.gotoAndPlay(1);
- this._visible = false;
- }
- if(_root.getlife)
- {
- _root.sheeplife = _root.sheepBlizLife;
- _root.getlife = false;
- _root.life.gotoAndStop(1);
- }
- }
-